home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr42 / vocshow2.zip / COMMAND_.LIB next >
Text File  |  1993-06-08  |  384b  |  13 lines

  1. -- Copyright 1991 by Tom Moran.  Anyone may use for any purpose.
  2.  
  3. package command_line is
  4.  
  5.   function parameter_count return natural;
  6.  
  7.   -- parameter(0) is program name with full path
  8.   -- parameter(i) for i in 1 .. parameter_count is i-th parameter
  9.   --   "" for i > parameter_count
  10.   function parameter(i:in natural) return string;
  11.  
  12. end command_line;
  13.